home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: switches_Global 0.005 (28 Sep 1994) ***
- **
- ** (c) © 1994 Oliver Clouth
- **
- ** Function : Global switches Oberon-A V1.4
- **
- **
- */
-
- ICON = 1
-
- DO WHILE (ICON)
- 'REQUEST TITLE="Global switches Seite 1"
- BODY="(** $C+ **) enable case checking|
- (** $C- **) disable case checking||
- (** $I+ **) enable array index checking|
- (** $I- **) disable array index checking||
- (** $L+ **) use absolute long addressing for|
- global variables|
- (** $L- **) access global variables through A4||
- (** $N+ **) check for NIL pointers|
- (** $N- **) ignore NIL pointers||
- (** $R+ **) enable range checking|
- (** $R- **) disable range checking" BUTTON="Seite 2|OK" VAR ICON'
-
- if (ICON = 1) then do
- 'REQUEST TITLE="Global switches Seite 2"
- BODY="(** $S+ **) Enable stack checking|
- (** $S- **) Disable stack checking||
- (** $T+ **) enable type checking|
- (** $T- **) disable type checking||
- (** $V+ **) enable overflow checking|
- (** $V- **) disable overflow checking||
- (** $Z+ **) zero all global and local variables|
- (** $Z- **) suppress zeroing of variables" BUTTON="Seite 1|OK" VAR ICON'
- end
-
- end
-
- Exit
-